home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / httrack-3.33.exe / {app} / src / htsalias.h < prev    next >
C/C++ Source or Header  |  2004-04-07  |  2KB  |  62 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: htsalias.h subroutines:                                */
  34. /*       alias for command-line options and config files        */
  35. /* Author: Xavier Roche                                         */
  36. /* ------------------------------------------------------------ */
  37.  
  38.  
  39. #ifndef HTSALIAS_DEFH
  40. #define HTSALIAS_DEFH
  41.  
  42. /* Library internal definictions */
  43. #ifdef HTS_INTERNAL_BYTECODE
  44. extern const char* hts_optalias[][4];
  45. int optalias_check(int argc,const char * const * argv,int n_arg,
  46.                    int* return_argc,char** return_argv,
  47.                    char* return_error);
  48. int optalias_find(const char* token);
  49. const char* optalias_help(const char* token);
  50. int optreal_find(const char* token);
  51. int optinclude_file(const char* name,
  52.                     int* argc,char** argv,char* x_argvblk,int* x_ptr);
  53. const char* optreal_value(int p);
  54. const char* optalias_value(int p);
  55. const char* opttype_value(int p);
  56. const char* opthelp_value(int p);
  57. char* hts_gethome(void);
  58. void expand_home(char* str);
  59. #endif
  60.  
  61. #endif
  62.